home *** CD-ROM | disk | FTP | other *** search
/ Thailand - Into the 2000's / Thailand: Into the 2000's.iso / Acrobat / Acrobat.exe / EXVW / 10061 < prev    next >
Text File  |  2001-10-26  |  845b  |  25 lines

  1. gCancelButtonWidth = max(
  2.     zstring_width(zstring: '$$$avProgressCancel'),
  3.     zstring_width(zstring: '$$$avProgressStop'));
  4.  
  5. dialog(name: '$$$/Dialogs/Progress')
  6. {
  7.     view(align_children: align_left)
  8.     {
  9.         view(align_children: align_row, alignment: align_fill)
  10.         {
  11.             static_text(item_id: 'Labl', alignment: align_fill);
  12.         }
  13.         view(align_children: align_row, alignment: align_fill)
  14.         {
  15.             progress_bar(item_id: 'pbar', width: 300, alignment: align_center);
  16.             chasing_arrows(item_id: 'Chas');
  17.             button(view_id: 'cncl', name: '$$$avProgressCancel', width: gCancelButtonWidth);
  18.         }
  19.         static_text(item_id: 'Phas', name: '$$$/Dialogs/EmptyStr', alignment: align_fill);
  20.         gap(height: gStaticTextHeight);
  21.         static_text(name: '$$$/Dialogs/Progress/WarningsAndErrors');
  22.         hier_list_box(item_id: 'ErWr', width: 400, height: 110);
  23.     }
  24. }
  25.